MCI18n/Models/TaskModel.cs

18 lines
375 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 TaskModel : ObservableObject
{
[ObservableProperty]
private string _id;
[ObservableProperty]
private string _title;
}
}