---
title: "ContentModelling"
description: "ContentModelling"
url: "https://www.contentstack.com/docs/developers/sdks/content-management-sdk/dot-net/reference/contentmodelling"
product: "Contentstack"
doc_type: "guide"
audience:
  - developers
  - admins
version: "current"
last_updated: "2026-09-22"
---

# ContentModelling

## ContentModelling

ContentModelling for creating/updating ContentTypes.

```
ContentModelling model = new ContentModelling(){
    Title = " This is title ",
    Uid = "The uid",
    Schema = new List<Field>(){
              new Field();
             };
};
```

UID for the content type.

Title for the content type.

List of field rules for the content type fields.

Option for the content types

Schema is list of the field you want to create within content type

## ContentModelling | .NET Management SDK | Contentstack

ContentModelling provides the model used to create and update content types in Contentstack.