12 lines
226 B
C#
12 lines
226 B
C#
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; }
|
|
}
|
|
} |