2015-04-27 17:53:50 +02:00
|
|
|
//
|
2016-05-17 18:22:18 +02:00
|
|
|
// EventPub.cs
|
2015-04-27 17:53:50 +02:00
|
|
|
//
|
|
|
|
|
// Author:
|
|
|
|
|
// Paul Schneider <paulschneider@free.fr>
|
|
|
|
|
//
|
|
|
|
|
// Copyright (c) 2015 Paul Schneider
|
|
|
|
|
//
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
|
//
|
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
2016-05-17 18:22:18 +02:00
|
|
|
using System.Collections.Generic;
|
2015-04-27 17:53:50 +02:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
2016-05-17 18:22:18 +02:00
|
|
|
namespace Yavsc.Models.Messaging
|
2015-04-27 17:53:50 +02:00
|
|
|
{
|
2017-01-19 12:59:49 +01:00
|
|
|
using Models.Relationship;
|
2015-04-27 17:53:50 +02:00
|
|
|
/// <summary>
|
2016-05-17 18:22:18 +02:00
|
|
|
/// Event pub.
|
2015-04-27 17:53:50 +02:00
|
|
|
/// </summary>
|
2018-02-03 20:17:29 +01:00
|
|
|
public class CircleEvent: BaseEvent
|
2015-04-27 17:53:50 +02:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
2016-05-17 18:22:18 +02:00
|
|
|
/// Gets or sets the circles.
|
2015-04-27 17:53:50 +02:00
|
|
|
/// </summary>
|
2016-05-17 18:22:18 +02:00
|
|
|
/// <value>The circles.</value>
|
2018-04-27 12:49:14 +02:00
|
|
|
[Required(ErrorMessageResourceName="Circles"),
|
2016-05-17 18:22:18 +02:00
|
|
|
Display(Name="Circles")]
|
|
|
|
|
public virtual List<Circle> Circles{ get; set; }
|
2018-02-03 20:17:29 +01:00
|
|
|
|
|
|
|
|
public override string CreateBody()
|
|
|
|
|
{
|
|
|
|
|
throw new System.NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-05-17 18:22:18 +02:00
|
|
|
|
2015-04-27 17:53:50 +02:00
|
|
|
}
|
2016-05-17 18:22:18 +02:00
|
|
|
|
|
|
|
|
|