9 lines
228 B
C#
9 lines
228 B
C#
|
|
namespace Meezi.Core.Entities;
|
||
|
|
|
||
|
|
public class SystemAdmin : BaseEntity
|
||
|
|
{
|
||
|
|
public string Name { get; set; } = string.Empty;
|
||
|
|
public string Phone { get; set; } = string.Empty;
|
||
|
|
public bool IsActive { get; set; } = true;
|
||
|
|
}
|