Files
Partsource/PartSource.Data/Models/Store.cs
2020-04-12 20:52:03 -04:00

19 lines
499 B
C#

// Decompiled with JetBrains decompiler
// Type: PartSource.Data.Models.Store
// Assembly: PartSource.Data, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 3EDAB3F5-83E7-4F65-906E-B40192014C57
// Assembly location: C:\Users\Tommy\Desktop\PS temp\PartSource.Data.dll
using System.ComponentModel.DataAnnotations;
namespace PartSource.Data.Models
{
public class Store
{
[Key]
public int StoreNumber { get; set; }
//public DbGeography Location { get; set; }
}
}