29 lines
822 B
C#
29 lines
822 B
C#
|
|
using _0_Framework.Domain;
|
|
using AccountManagement.Domain.SubAccountPermissionSubtitle3Agg;
|
|
|
|
namespace AccountManagement.Domain.SubAccountPermissionSubtitle4Agg
|
|
{
|
|
public class SubAccountPermissionSubtitle4 : EntityBase
|
|
{
|
|
public string Title { get; private set; }
|
|
public int Code { get; private set; }
|
|
|
|
public SubAccountPermissionSubtitle3 Parent { get; private set; }
|
|
public long ParentId { get; private set; }
|
|
|
|
public SubAccountPermissionSubtitle4(string title, int code, long parentId)
|
|
{
|
|
Title = title;
|
|
Code = code;
|
|
ParentId = parentId;
|
|
}
|
|
public void Edit(string title, int code, long parentId)
|
|
{
|
|
Title = title;
|
|
Code = code;
|
|
ParentId = parentId;
|
|
}
|
|
}
|
|
}
|