14 lines
246 B
C#
14 lines
246 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Yavsc.Models.Relationship
|
|
{
|
|
public enum LocationKind
|
|
{
|
|
|
|
PostalAddress,
|
|
LocationName,
|
|
City
|
|
|
|
}
|
|
} |