blob: c7611e606fb59f00f330db62c0763af6b2cb1d04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Stubs
{
public class StubAttribute : Attribute
{
public String Name { get; set; }
public String Description { get; set; }
public StubDirection Direction { get; set; }
public StubAttribute(String name, String description, StubDirection direction)
{
Name = name;
Description = description;
Direction = direction;
}
}
}
|