Model.cs 465 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace AvaloniaApplication4.Models
  8. {
  9. internal class Model
  10. {
  11. public static int parol = 12345;
  12. public static string login = "Anna";
  13. public static List<string> funclist = new List<string> { "Сложение", "Вычитание", "Умножение", "Деление" };
  14. }
  15. }