using System;
namespace Oqtane.Models
{
///
/// Language Information for s
/// TODO: todoc - unclear how this is different from
///
public class Language : IAuditable
{
///
/// Internal ID
///
public int LanguageId { get; set; }
///
/// Reference to a
/// TODO: todoc - unclear why it's nullable
///
public int? SiteId { get; set; }
///
/// Language Name - corresponds to , _not_
///
public string Name { get; set; }
///
/// Language / Culture code, like 'en-US' - corresponds to
///
public string Code { get; set; }
///
/// Is this the default language on a
///
public bool IsDefault { get; set; }
#region IAuditable Properties
///
public string CreatedBy { get; set; }
///
public DateTime CreatedOn { get; set; }
///
public string ModifiedBy { get; set; }
///
public DateTime ModifiedOn { get; set; }
#endregion
}
}