namespace WorkerService.Models
{
///
/// Table index
///
public class Index
{
///
/// Name of index
///
public string Name { get; set; }
///
/// Whether or not the index is a primary key
///
public bool IsPrimaryKey { get; set; }
///
/// Whether or not the index is unique
///
public bool IsUnique { get; set; }
///
/// Whether or not the index is unique constraint
///
public bool IsUniqueConstraint { get; set; }
}
}