13 lines
381 B
C#
13 lines
381 B
C#
namespace kehati.Models.Data.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; }
|
|
} |