mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-01-01 11:13:19 +00:00
20 lines
541 B
C#
20 lines
541 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Runtime.Serialization;
|
||
|
|
||
|
namespace MonoStockPortfolio.Entities
|
||
|
{
|
||
|
public class Portfolio
|
||
|
{
|
||
|
public Portfolio() { }
|
||
|
public Portfolio(int id) { ID = id; }
|
||
|
public long? ID { get; private set; }
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
public void GetObjectData(SerializationInfo info, StreamingContext context)
|
||
|
{
|
||
|
info.AddValue("ID", this.ID);
|
||
|
info.AddValue("Name", this.Name);
|
||
|
}
|
||
|
}
|
||
|
}
|