Skip to content

Instantly share code, notes, and snippets.

@takekazuomi
Created April 22, 2011 08:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takekazuomi/936271 to your computer and use it in GitHub Desktop.
Save takekazuomi/936271 to your computer and use it in GitHub Desktop.
Entity
namespace Jobs {
public class EntityOne : TableServiceEntity {
public EntityOne() {
}
public EntityOne(string partitionKey, string rowKey)
: base(partitionKey, rowKey) {
}
public int Index {
get;
set;
}
public string Data1 {
get;
set;
}
public string Data2 {
get;
set;
}
public string Data3 {
get;
set;
}
public string Data4 {
get;
set;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment