hrms-api-backend/BMA.EHR.Domain/Models/HR/ProfileSalaryPositionNumber.cs

20 lines
539 B
C#
Raw Normal View History

2023-06-26 15:18:39 +07:00
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
2023-06-26 15:18:39 +07:00
namespace BMA.EHR.Domain.Models.HR
{
public class ProfileSalaryPositionNumber
{
[ForeignKey("ProfileSalary"), Comment("ไม่ใช้")]
public int Id { get; set; }
[MaxLength(200)]
public string Comment { get; set; }
// public PositionNumberEntity PositionNumber { get; set; }
// public ProfileSalary ProfileSalary { get; set; }
}
}