Add language repository & controller

This commit is contained in:
hishamco
2021-01-10 20:09:04 +03:00
parent 047fa9ac4e
commit aa19a35834
6 changed files with 132 additions and 1 deletions

View File

@ -0,0 +1,25 @@
using System;
namespace Oqtane.Models
{
public class Language : IAuditable
{
public int LanguageId { get; set; }
public int? SiteId { get; set; }
public string Name { get; set; }
public string Code { get; set; }
public bool IsCurrent { get; set; }
public string CreatedBy { get; set; }
public DateTime CreatedOn { get; set; }
public string ModifiedBy { get; set; }
public DateTime ModifiedOn { get; set; }
}
}