20 lines
483 B
C#
20 lines
483 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Entities.Items
|
|
{
|
|
[Table("UnitOfMessures")]
|
|
public class UnitOfMessure
|
|
{
|
|
[Key]
|
|
public int UOMId { get; set; }
|
|
public string? UOMName { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|
|
}
|