14 lines
376 B
C#
14 lines
376 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace PSTW_CentralSystem.Models
|
|
{
|
|
public class CompanyModel
|
|
{
|
|
[Key]
|
|
public int CompanyId { get; set; }
|
|
public required string CompanyName { get; set; }
|
|
public virtual ICollection<DepartmentModel>? Departments { get; set; }
|
|
}
|
|
}
|