Initial
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace MileageTraker.Web.Models
|
||||
{
|
||||
public class City
|
||||
{
|
||||
[Key]
|
||||
public int CityId { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string County { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user