26 lines
617 B
C#
26 lines
617 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Documents;
|
|
|
|
namespace MCI18n.Models
|
|
{
|
|
public partial class ChapterGroupModel : ObservableObject
|
|
{
|
|
[ObservableProperty]
|
|
private string _id;
|
|
|
|
[ObservableProperty]
|
|
private string _name;
|
|
|
|
[ObservableProperty]
|
|
private ObservableCollection<ChapterModel> _chapters = [];
|
|
}
|
|
}
|