MCI18n/Models/QuestLangModel.cs

22 lines
501 B
C#

using CommunityToolkit.Mvvm.ComponentModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MCI18n.Models
{
public partial class QuestLangModel : ObservableObject
{
[ObservableProperty]
private string _type;
[ObservableProperty]
private string _id;
[ObservableProperty]
private string _docType;
[ObservableProperty]
private string _value;
}
}