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

20 lines
550 B
C#

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