using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Web; namespace OSS.Models { [Table("tblService")] public class ServiceFee { [Key] public int ServiID { get; set; } public string ServiceName { get; set; } public int Status { get; set; } public decimal? Fee { get; set; } public string GFSCode { get; set; } public string Currency { get; set; } } }