Commit d155be41 by Liv Haapala

update

1 parent e25abe90
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MoyaAdminLib
{
public class OrgMeal
{
public DateTime date = DateTime.Now;
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MoyaAdminLib
{
public class OrgMealList
{
List<OrgMeal> meals = new List<OrgMeal>();
}
}
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!