TransferEditViewModel.cs 264 B

12345678910111213
  1. using Xamarin.Forms;
  2. namespace PRS.Mobile
  3. {
  4. public class TransferEditViewModel : BindableObject
  5. {
  6. public StockTransaction Transaction { get; set; }
  7. public StockTransactions OtherTransactions { get; set; }
  8. }
  9. }