blob: e2e5fb9df5000929452f0f2484f90f6b70a4a1ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Integration.Storage
{
public class StorageFile : StorageItem
{
private int _length;
public int Length
{
get { return _length; }
set { _length = value; RaisePropertyChangedAuto(); }
}
}
}
|