source: WineTrackerFinal/WineTrackerWebApi/Models/CustomerType/CustomerType.cs

main
Last change on this file was 17d6948, checked in by Nikola Mishevski <Nikola.Mishevski@…>, 7 days ago

initial commit WineTracker Project

  • Property mode set to 100644
File size: 258 bytes
Line 
1namespace WineTrackerWebApi.Models.CustomerType
2{
3 public class CustomerType
4 {
5 public int CustomerTypeId { get; set; }
6 public string CustomerTypeName { get; set; }
7 public string CustomerTypeDescription { get; set; }
8 }
9}
Note: See TracBrowser for help on using the repository browser.