hrms-api-backend/BMA.EHR.Domain/Models/HR/ProfileSalaryPositionLevel.cs
Suphonchai Phoonsawat 68dab7a727 Add Profile Table
2023-06-26 15:18:39 +07:00

20 lines
531 B
C#

using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace BMA.EHR.Domain.Models.HR
{
public class ProfileSalaryPositionLevel
{
[ForeignKey("ProfileSalary"), Comment("ไม่ใช้")]
public int Id { get; set; }
[MaxLength(200)]
public string Comment { get; set; }
// public PositionLevel PositionLevel { get; set; }
// public ProfileSalary ProfileSalary { get; set; }
}
}