Guest User

IAdd.cs

a guest
Sep 24th, 2013
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.59 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace MMHLive.Helpers
  8. {
  9.     public interface IAdd
  10.     {
  11.         bool IsSelected
  12.         {
  13.             get;
  14.             set;
  15.         }
  16.         bool IsValid
  17.         {
  18.             get;
  19.             set;
  20.         }
  21.         bool Attempted
  22.         {
  23.             get;
  24.             set;
  25.         }
  26.         string Field
  27.         {
  28.             get;
  29.             set;
  30.         }
  31.  
  32.         object Value
  33.         {
  34.             get;
  35.             set;
  36.         }
  37.     }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment