tiseza_oss_live/Models/COIPrice.cs

20 lines
470 B
C#
Raw Permalink Normal View History

2025-11-15 11:14:31 +00:00
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;
}
}
}