21 lines
469 B
C#
21 lines
469 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
using Volo.Abp.Domain.Values;
|
|||
|
|
|
|||
|
|
namespace Kurs.Platform.Permissions;
|
|||
|
|
|
|||
|
|
public class PermissionCrudValueObject : ValueObject
|
|||
|
|
{
|
|||
|
|
public string C { get; set; }
|
|||
|
|
public string R { get; set; }
|
|||
|
|
public string U { get; set; }
|
|||
|
|
public string D { get; set; }
|
|||
|
|
|
|||
|
|
protected override IEnumerable<object> GetAtomicValues()
|
|||
|
|
{
|
|||
|
|
yield return C;
|
|||
|
|
yield return R;
|
|||
|
|
yield return U;
|
|||
|
|
yield return D;
|
|||
|
|
}
|
|||
|
|
}
|