12 lines
240 B
C#
12 lines
240 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace MileageTraker.Web.Models
|
|
{
|
|
public class PurposeType
|
|
{
|
|
[Key]
|
|
public int PurposeTypeId { get; set; }
|
|
public string Purpose { get; set; }
|
|
public int SortOrder { get; set; }
|
|
}
|
|
} |