20 lines
470 B
C#
20 lines
470 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
|
|
{
|
|
public class COIPrice
|
|
{
|
|
public int Id { get; set; }
|
|
public string ApplicationType { get; set; }
|
|
public decimal Price { get; set; }
|
|
public string ToString(){
|
|
return ApplicationType+" "+Price;
|
|
}
|
|
}
|
|
} |