about page finished
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VDownload.Services.Data.Configuration.Models
|
||||
{
|
||||
public class Language
|
||||
{
|
||||
[ConfigurationKeyName("code")]
|
||||
public string Code { get; set; }
|
||||
|
||||
[ConfigurationKeyName("translators")]
|
||||
public IEnumerable<Person> Translators { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user