12345678910111213141516171819202122232425262728 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Master.Model.BOTA
- {
- public class AuthorItem : BindableBase
- {
- private string name;
- public string Name
- {
- get { return name; }
- set
- {
- SetProperty(ref name, value);
- }
- }
- public AuthorItem(string name)
- {
- Name = name;
- }
- }
- }
|