17 lines
670 B
C#
17 lines
670 B
C#
namespace HamyanEdalat.Domain.Models.Claims;
|
|
public class ClaimDto : INotifyPropertyChanged
|
|
{
|
|
public string Value { get; set; } = string.Empty;
|
|
public string Type { get; set; } = string.Empty;
|
|
public string Title { get; set; } = string.Empty;
|
|
public string Detail { get; set; } = string.Empty;
|
|
public bool IsSelected { get; set; } = false;
|
|
|
|
public event PropertyChangedEventHandler? PropertyChanged;
|
|
protected virtual void OnPropertyChanged([CallerMemberName] string? propertyName = null)
|
|
{
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
|
}
|
|
public Claim GetClaim => new Claim(Type, Value);
|
|
}
|