| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Media;
- namespace TeamAAS_VP.Models
- {
- public class StatusInfo : BindableBase
- {
- private Guid _id;
- public Guid ID
- {
- get { return _id; }
- set { SetProperty(ref _id, value) ; }
- }
- private string _Message;
- public string Message
- {
- get { return _Message; }
- set { SetProperty(ref _Message, value); }
- }
- private Brush _Background;
- public Brush Background
- {
- get { return _Background; }
- set { SetProperty(ref _Background, value); }
- }
- public StatusInfo(Guid id,string message, Brush background)
- {
- ID = id;
- Message = message;
- Background = background;
- }
- }
- }
|