31 lines
634 B
C#
31 lines
634 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MCI18n.Models
|
|
{
|
|
public partial class QuestModel : ObservableObject
|
|
{
|
|
|
|
[ObservableProperty]
|
|
private string _id;
|
|
|
|
[ObservableProperty]
|
|
private string _title;
|
|
|
|
[ObservableProperty]
|
|
private string _subTitle;
|
|
|
|
[ObservableProperty]
|
|
private string _description;
|
|
|
|
|
|
[ObservableProperty]
|
|
private ObservableCollection<TaskModel> _tasks;
|
|
}
|
|
}
|