23 lines
553 B
C#
23 lines
553 B
C#
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 long ServiID { get; set; }
|
|
public string ServiceName { get; set; }
|
|
public string Status { get; set; }
|
|
public decimal? Fee { get; set; }
|
|
public string GFSCode { get; set; }
|
|
public string Currency { get; set; }
|
|
}
|
|
}
|
|
|
|
|