1 // Copyright 2004-2008 Castle Project - http://www.castleproject.org/
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
7 // http://www.apache.org/licenses/LICENSE-2.0
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
15 namespace Castle
.Applications
.MindDump
.Model
18 using System
.Collections
;
24 private String _description
;
25 private String _theme
;
26 private Author _author
;
38 public Blog(String name
, String description
, String theme
, Author author
)
41 _description
= description
;
55 set { _name = value; }
58 public string Description
60 get { return _description; }
61 set { _description = value; }
66 get { return _theme; }
67 set { _theme = value; }
72 get { return _author; }
73 set { _author = value; }
78 get { return _posts; }
79 set { _posts = value; }