kehati/Models/Entity/Master/Group.cs

13 lines
383 B
C#

namespace kehati.Models.Entity.Master;
using System.ComponentModel.DataAnnotations.Schema;
[Table("ms_group")]
public class Group
{
public int MsGroupId { get; set; }
public string Name { get; set; } = "";
public string Alias { get; set; } = "";
public string Status { get; set; } = "";
public int CreatedBy { get; set; }
public int UpdatedBy { get; set; }
}